This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Failed to load DSAPI Filter ~Sean Brefreeader 16.Dec.03 09:43 AM a Web browser Domino Server 6.0.2 CF2Linux - RedHat
Hi
As you are using g++ (GNU C++ Compiler, So the way source code names are translated to the symbol names in the object file is different from way source code names are translated to the symbol names by C compiler because C++ must encode type information into the symbol name in order to preserve strong type safety across compilation units).
Please Check that the following symbols are exported by your library.
FilterInit
Http FilterProc
If the name is little bit different , then use extern "C" directive for exporting the source code names in C fashion rather than c++ fashion.
i.e. use extern "C" before both FilterInit and HttpFilterProc methods in your source Code.